home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / TURB_VIS / TCYBER25 / CYGAME.ZIP / CGCMDS.PAS < prev    next >
Pascal/Delphi Source File  |  1994-10-20  |  613b  |  41 lines

  1. {
  2. Turbo Vision CyberTools 2.5
  3. (C) 1994 Steve Goldsmith
  4. All Rights Reserved
  5.  
  6. Commands used by CyberGame app.
  7. }
  8.  
  9. unit CGCmds;
  10.  
  11. {$I APP.INC}
  12.  
  13. interface
  14.  
  15. const
  16.  
  17. {app commands}
  18.  
  19.   cmLoadFont    = 1000;
  20.   cmLoadPCX     = 1001;
  21.   cmRestoreDef  = 1002;
  22.   cmScreenOpts  = 1003;
  23.   cmControlOpts = 1004;
  24.   cmAdjPal      = 1005;
  25.   cmSaveConfig  = 1006;
  26.   cmLoadConfig  = 1007;
  27.   cmAbout       = 1008;
  28.   cmViewDoc     = 1009;
  29.   cmColors      = 1010;
  30.   cmNewGame     = 1011;
  31.  
  32. {animation dialog commands}
  33.  
  34.   cmAniOn   = 2000;
  35.   cmAniOff  = 2001;
  36.   cmAnimate = 2002;
  37.  
  38. implementation
  39.  
  40. end.
  41.